Blazor | ComponentOne
C1.Blazor.Core Assembly / C1.Blazor.Core Namespace / Range<T> Class / IsContainedBy Method
A range to test.

In This Topic
    IsContainedBy Method
    In This Topic
    Indicates if the range is contained by value.
    Syntax
    'Declaration
     
    
    Public Function IsContainedBy( _
       ByVal value As Range(Of T) _
    ) As Boolean
    public bool IsContainedBy( 
       Range<T> value
    )

    Parameters

    value
    A range to test.

    Return Value

    true if the entire range is within value.
    Exceptions
    ExceptionDescription
    value is null.
    See Also